ResultSet object has no attribute get_text. Youre probably treating a list of elements like a single element. Did you call find_all() when you meant to call find()
69
for el in soup.find_all('div', attrs={'class': 'fm_linkeSpalte'}):
print el.get_text()